489ff73d840944feba5747ab93ccd8a5fe70340a,src/main/java/com/github/lindenb/jvarkit/tools/vcfviewgui/NgsStage.java,NgsStage,buildDictTab,#SAMSequenceDictionary#,722
Before Change
);
table.getColumns().add(makeColumn("Name",SSR->SSR.getSequenceName()));
table.getColumns().add(makeColumn("Length",SSR->SSR.getSequenceLength()));
table.getColumns().add(makeColumn("Assembly",SSR->SSR.getAssembly()));
final Tab tab=new Tab("Dict", table);
tab.setClosable(false);
After Change
);
table.getColumns().add(makeColumn("Name",SSR->SSR.getSequenceName()));
table.getColumns().add(formatIntegerColumn(makeColumn("Length",SSR->SSR.getSequenceLength())));
if(dict.getSequences().stream().filter(S->S.getAssembly()!=null && !S.getAssembly().trim().isEmpty()).findAny().isPresent()) {
table.getColumns().add(makeColumn("Assembly",SSR->SSR.getAssembly()));